home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Moscow ML 1.31 / source code / mosml / src / mosmllib / Miscnj93.sml < prev    next >
Encoding:
Text File  |  1996-07-03  |  326 b   |  17 lines  |  [TEXT/R*ch]

  1. (* Miscnj93.sml 1995-02-24  
  2.    Only those functions compatible with the SML/NJ 0.93 initial environment.
  3. *)
  4.  
  5. fun (g o f) x = g (f x);
  6. fun a before (b : unit) = a;
  7.  
  8. val str = String.str;
  9.  
  10. val op @ = List.@;
  11. val length = List.length;
  12. val map = List.map;
  13. val null = List.null;
  14. val rev = List.rev;
  15.  
  16. val vector = Vector.fromList;
  17.